home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 127 / PC Guia 127.iso / Software / Utils / IE View / Bin / ie_view-1.2.7-fx+mz.xpi / chrome / ieview.jar / content / ieviewsettings.xul < prev    next >
Extensible Markup Language  |  2005-10-25  |  3KB  |  100 lines

  1. <?xml version="1.0"?> 
  2. <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
  3. <!DOCTYPE window SYSTEM "chrome://ieview/locale/ieview.dtd" >
  4.  
  5. <dialog xmlns:html="http://www.w3.org/1999/xhtml"
  6.       xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  7.       xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  8.       onload="IeView.initPath();"
  9.       ondialogaccept="IeView.setIeviewOptions();"
  10.       title="&ieview.prefdialogtitle;">
  11.  
  12. <html:script language="javascript" src="chrome://ieview/content/ieviewOverlay.js" />
  13.  
  14. <!-- r@bitwaste.com : mark that we want to save the search option into 
  15.      the preferences -->
  16. <script type="application/x-javascript">
  17.   <![CDATA[
  18.     var panel = "chrome://ieview/content/ieviewsettings.xul";
  19.     var _elementIDs = [ "ieloc" ];
  20.   ]]>
  21. </script>
  22.  
  23.  
  24.  
  25.    <tabbox>
  26.       <tabs>
  27.         <tab label="&ieview.prefmaintab;" />
  28.         <tab label="&ieview.prefadvancedtab;" />
  29.       </tabs>
  30.  
  31.       <tabpanels>
  32.        <tabpanel>
  33.         <vbox>
  34.     <groupbox>
  35.         <caption label="&ieview.prefdialoglocgroup;" />
  36.  
  37.         <description>
  38.             &ieview.prefdialoglocdesc1;
  39.         </description>
  40.         <description>
  41.             &ieview.prefdialoglocdesc2;
  42.         </description>
  43.     
  44.         <hbox align="center"> 
  45.             <label control="ieloc" value="&ieview.prefdialogloclabel;"/>
  46.             
  47.             <textbox id="ieloc" 
  48.                 pref="true"
  49.                 preftype="string"
  50.                 prefstring="ieview.ieapp"
  51.                 size="50"
  52.              /> 
  53.         
  54.             <button class="" 
  55.              label="&ieview.prefdialoglocchoose;" 
  56.              disabled="false"
  57.              oncommand="IeView.pickIe();"/>
  58.         </hbox>
  59.     </groupbox>
  60.  
  61.     <groupbox>
  62.         <caption label="&ieview.prefdialogpatgroup;" />
  63.  
  64.         <description>
  65.             &ieview.prefdialogpatdesc;
  66.         </description>
  67.  
  68.         <hbox align="center">
  69.             <listbox id="patlist" flex="1" disableKeyNavigation="true" seltype="multiple" onselect="IeView.updateDelButtonStatus();" />
  70.             <button id="delpat" class="" label="&ieview.prefdialogdeletebutton;" disabled="true" oncommand="IeView.deleteSelected();" />
  71.         </hbox>
  72.  
  73.         <hbox align="center"> 
  74.             <label control="newpat" value="&ieview.prefdialogpatlabel;"/>
  75.         
  76.             <textbox id="newpat" pref="false" size="50" oninput="IeView.updateButtonStatus();" /> 
  77.     
  78.             <button class="" id="addpat"
  79.                  label="&ieview.prefdialogaddbutton;" 
  80.                  disabled="true"
  81.                  oncommand="IeView.addNewPat();"/>
  82.         </hbox>
  83.     </groupbox>
  84.         </vbox>
  85.      </tabpanel>
  86.      <tabpanel>
  87.     <vbox style="width: 450px">
  88.        <description >&ieview.disable-always-desc;</description>
  89.        <checkbox id="disableAlways" label="&ieview.disable-always-ie;" />
  90.        <description>&ieview.close-after-desc;</description>
  91.        <checkbox id="closeAfterRedir" label="&ieview.close-after-redir;" />
  92.      </vbox>
  93.      </tabpanel>
  94.     </tabpanels>
  95.    </tabbox>
  96.  
  97.  
  98. </dialog>
  99.  
  100.